home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / email / MIMEBase.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  1KB  |  23 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. '''Base class for MIME specializations.'''
  5. from email import Message
  6.  
  7. class MIMEBase(Message.Message):
  8.     '''Base class for MIME specializations.'''
  9.     
  10.     def __init__(self, _maintype, _subtype, **_params):
  11.         '''This constructor adds a Content-Type: and a MIME-Version: header.
  12.  
  13.         The Content-Type: header is taken from the _maintype and _subtype
  14.         arguments.  Additional parameters for this header are taken from the
  15.         keyword arguments.
  16.         '''
  17.         Message.Message.__init__(self)
  18.         ctype = '%s/%s' % (_maintype, _subtype)
  19.         self.add_header('Content-Type', ctype, **_params)
  20.         self['MIME-Version'] = '1.0'
  21.  
  22.  
  23.